home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Languages / Masm V6.11 / SAMPLES / MIXED / CMAIN.C$ / CMAIN
Encoding:
Text File  |  1992-11-12  |  234 b   |  12 lines

  1. /* Power2 procedure is in C.ASM  */
  2. /* Compile with CL cmain.c c.obj */
  3.  
  4. #include <stdio.h>
  5.  
  6. extern int Power2( int factor, int power );
  7.  
  8. void main()
  9. {
  10.     printf( "3 times 2 to the power of 5 is %d\n", Power2( 3, 5 ) );
  11. }
  12.